|
This page last changed on Oct 05, 2010 by dcline.
RPM installation
* Set JAVA_MAXHEAP_ARGUMENT to null, to disable the default of max RAM
* As root install condor RPM
 | hostallow_write ERROR This error is normal in the installation process. By default the installation only allows read access for security purposes. |
* Run configure script to setup installation as a submit and execute only node to the central manager nanomia
* Edit /opt/condor-6.8.4/etc/condor_config changing the lines to allow WRITE access and an address where email should be sent when something goes wrong
HOSTALLOW_WRITE = *.shore.mbari.org
CONDOR_ADMIN = dcline@mbari
MAIL = /bin/mail
Open the local configuration file /opt/condor-7.2.3/local.nanomia/condor_config.local. Modify DAEMON_LIST to include VIEW_SERVER and add the START expression
CONDOR_VIEW_HOST = $(CONDOR_HOST):9619
DAEMON_LIST = VIEW_SERVER,...
START = ( $(CPUIdle) || (State != "Unclaimed" && State != "Owner"))
UID_DOMAIN = $(FULL_HOSTNAME)
FILESYSTEM_DOMAIN = $(FULL_HOSTNAME)
TRUST_UID_DOMAIN = True
Installing Condor as a service on Linux
* Create condor.sh file in /etc/profile.d then add the following to it:
- Install condor service script to execute condor on bootup
- Edit condor boot service script replacing MASTER line and
Add . /etc/profile.d/condor.c/sh *before* the line MASTER
- Add soft links to the condor startup script
- Start the condor service
|